echo do_shortcode('[name_of_shortcode]');
<div id="ipad-panel">
[themify_layout_part id=103]
</div>
<?php echo do_shortcode('[name_of_shortcode]'); ?>
// function that runs when shortcode is called
function wpb_demo_shortcode() {
// Things that you want to do.
$message = 'Hello world!';
// Output needs to be return
return $message;
}
// register shortcode
add_shortcode('greeting', 'wpb_demo_shortcode');